home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / LCLINT-D.SPK / lclint / guide / null.c < prev    next >
Encoding:
Text File  |  1996-08-26  |  139 b   |  11 lines

  1. char firstChar1 (/*@null@*/ char *s)
  2. {
  3.   return *s;
  4. }
  5.  
  6. char firstChar2 (/*@null@*/ char *s)
  7. {
  8.   if (s == NULL) return '\0';
  9.   return *s;
  10. }
  11.